type runtime.puintptr

11 uses

	runtime (current package)
		runtime2.go#L281: type puintptr uintptr
		runtime2.go#L284: func (pp puintptr) ptr() *p { return (*p)(unsafe.Pointer(pp)) }
		runtime2.go#L287: func (pp *puintptr) set(p *p) { *pp = puintptr(unsafe.Pointer(p)) }
		runtime2.go#L473: 	tracelastp     puintptr // last P emitted an event for this goroutine
		runtime2.go#L528: 	p             puintptr // attached p for executing go code (nil if not executing go code)
		runtime2.go#L529: 	nextp         puintptr
		runtime2.go#L530: 	oldp          puintptr // the p that was attached before executing a syscall
		runtime2.go#L599: 	link        puintptr
		runtime2.go#L764: 	pidle      puintptr // idle p's
		time.go#L22: 	pp puintptr